![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@eximchain/dappbot-types
Advanced tools
Typescript bindings describing the core data types and API interactions with DappBot. Extracted into their own repository in order to :
There is full generated documentation from the source code hosted at eximchain.github.io/dappbot-types
. Briefly, the types are grouped into nested namespaces in order to minimize both collisions and stuttering. They are nested like:
DappBotTypes
: Overall namespace, package's default export
Dapp
: Interfaces, type guards, and factories related to the DappItem
data typeUser
: Interfaces, type guards, and factories related to the User
& auth data typesResponses
: Interfaces and helper functions for our API responsesMethods
: Each sub-module within here (Auth
, Payment
, Private
, Public
) contains all types related to that resource's available methods. Each method contains keys Args
, Result
, Response
, HTTP
, & Path
. The Result
corresponds to the res.data
in a successful call, Response
just wraps that shape in data
/err
.As a consumer, you can import either import the full namespace from the top or instead use the import string to grab one of the more nested ones. All of the individual namespaces & types are declared within the spec
folder, which you can directly refer to in your import. By example, below are two ways of getting at the same type:
// Grab the overall types object and drill down through
// the namespaces to get the interface we want
import Types from 'dappbot-types';
const argsFromType:Types.Methods.Auth.Login.Args = {
username : 'wuddup',
password : 'we here',
yis : 'this prop is not legal and gets an error'
}
// Now we're going through the file structure to more
// directly grab the namespace with the types we're
// concerned about in this hypothetical file.
import { Login } from 'dappbot-types/spec/methods/auth';
const argsFromAuth:Login.Args = {
username : "this object will have err because it's missing a property"
}
FAQs
Typescript bindings to interact with the DappBot API
The npm package @eximchain/dappbot-types receives a total of 0 weekly downloads. As such, @eximchain/dappbot-types popularity was classified as not popular.
We found that @eximchain/dappbot-types demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.